PrintStringNoBC

Syntax

Screen:PrintStringNoBC(msg)

Description

Prints a message to the primary image buffer without the background color.

Note

Be sure to use Screen:Render() after using this function.

Example

function main() {
  Screen:Show()
  Screen:BackColor(16777215)  //does not matter what color; in wont be displayed
 
  Screen:PrintStringNoBC("Mabuhay!")  //print the message
 
  Screen:Render()  //display the message to the Screen dialog box
 
  Konsol:Delay(1000)  //pause for a second to read the message
}
www.konsolscript.org
© 2005-2011 KonsolScript Labs | All Rights Reversed | Licensed under GNU GPL | Designed by Mj Mendoza IV
http://www.sourceforge.net